Xbasic

OBJECT.QUICK_SEARCH Function

Syntax

.Quick_Search()

Description

Does a quick search of the object. This is the same action as the Quick Filter command.

The <OBJECT>.QUICK_SEARCH() method applies to:

Browses (for <OBJECT> use either the <BROWSE> pointer or the name of the browse)
Forms (for <OBJECT> use either the <FORM> pointer or the name of the form)

The <OBJECT>.QUICK_SEARCH() method performs the same action as the Quick Filter (Quick Search) command.

Example

With the cursor on the firstname field of the Customer form of AlphaSports, the following script does a quick search using its current value.

dim ptr as P
ptr = form.view("Customer Information")
ptr.Quick_Search()

Limitations

Desktop applications only.

See Also